annotate libinterp/corefcn/data.h @ 30654:7ad57680a310 stable

declare function defined in header file as inline, not extern * data.h (do_class_concat): Declare function defined in header file as inline, not extern.
author John W. Eaton <jwe@octave.org>
date Tue, 18 Jan 2022 13:13:33 -0500
parents 796f54d4ddbf
children 2aa5bcaba504 e88a07dec498
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
1 ////////////////////////////////////////////////////////////////////////
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
2 //
30564
796f54d4ddbf update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 29959
diff changeset
3 // Copyright (C) 2012-2022 The Octave Project Developers
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
4 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
5 // See the file COPYRIGHT.md in the top-level directory of this
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
6 // distribution or <https://octave.org/copyright/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
7 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
8 // This file is part of Octave.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
9 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
10 // Octave is free software: you can redistribute it and/or modify it
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
11 // under the terms of the GNU General Public License as published by
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
12 // the Free Software Foundation, either version 3 of the License, or
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
13 // (at your option) any later version.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
14 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
15 // Octave is distributed in the hope that it will be useful, but
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
18 // GNU General Public License for more details.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
19 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
20 // You should have received a copy of the GNU General Public License
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
21 // along with Octave; see the file COPYING. If not, see
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
22 // <https://www.gnu.org/licenses/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
23 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
24 ////////////////////////////////////////////////////////////////////////
13294
7dce7e110511 make concatenation of class objects work
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25
20791
f7084eae3318 maint: Use Octave coding conventions for #if statements.
Rik <rik@octave.org>
parents: 19697
diff changeset
26 #if ! defined (octave_data_h)
13294
7dce7e110511 make concatenation of class objects work
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 #define octave_data_h 1
7dce7e110511 make concatenation of class objects work
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28
21244
1473547f50f5 include octave-config.h in public header files
John W. Eaton <jwe@octave.org>
parents: 20791
diff changeset
29 #include "octave-config.h"
1473547f50f5 include octave-config.h in public header files
John W. Eaton <jwe@octave.org>
parents: 20791
diff changeset
30
13294
7dce7e110511 make concatenation of class objects work
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 #include <string>
7dce7e110511 make concatenation of class objects work
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32
7dce7e110511 make concatenation of class objects work
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 class octave_value;
7dce7e110511 make concatenation of class objects work
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34 class octave_value_list;
7dce7e110511 make concatenation of class objects work
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35
29955
693329e53f25 move do_class_concat function inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
36 OCTAVE_NAMESPACE_BEGIN
693329e53f25 move do_class_concat function inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
37
13294
7dce7e110511 make concatenation of class objects work
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 extern OCTINTERP_API octave_value
29959
9e35973fb6c0 * data.h, data.cc (do_class_concat): Pass string argument by const reference.
John W. Eaton <jwe@octave.org>
parents: 29955
diff changeset
39 do_class_concat (const octave_value_list& ovl, const std::string& cattype,
9e35973fb6c0 * data.h, data.cc (do_class_concat): Pass string argument by const reference.
John W. Eaton <jwe@octave.org>
parents: 29955
diff changeset
40 int dim);
13294
7dce7e110511 make concatenation of class objects work
John W. Eaton <jwe@octave.org>
parents:
diff changeset
41
29955
693329e53f25 move do_class_concat function inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
42 OCTAVE_NAMESPACE_END
693329e53f25 move do_class_concat function inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
43
693329e53f25 move do_class_concat function inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
44 #if defined (OCTAVE_PROVIDE_DEPRECATED_SYMBOLS)
693329e53f25 move do_class_concat function inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
45 OCTAVE_DEPRECATED (7, "use 'octave::do_class_concat' instead")
30654
7ad57680a310 declare function defined in header file as inline, not extern
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
46 inline OCTINTERP_API octave_value
29959
9e35973fb6c0 * data.h, data.cc (do_class_concat): Pass string argument by const reference.
John W. Eaton <jwe@octave.org>
parents: 29955
diff changeset
47 do_class_concat (const octave_value_list& ovl, const std::string& cattype,
9e35973fb6c0 * data.h, data.cc (do_class_concat): Pass string argument by const reference.
John W. Eaton <jwe@octave.org>
parents: 29955
diff changeset
48 int dim)
29955
693329e53f25 move do_class_concat function inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
49 {
693329e53f25 move do_class_concat function inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
50 return octave::do_class_concat (ovl, cattype, dim);
693329e53f25 move do_class_concat function inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
51 }
13294
7dce7e110511 make concatenation of class objects work
John W. Eaton <jwe@octave.org>
parents:
diff changeset
52 #endif
29955
693329e53f25 move do_class_concat function inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
53
693329e53f25 move do_class_concat function inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
54 #endif