Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jonathan Wilkes
flext
Commits
cc1dfc58
Commit
cc1dfc58
authored
Nov 13, 2002
by
thomas
Browse files
no message
git-svn-id:
https://svn.grrrr.org/ext/trunk@372
4d9ac71a-51e6-0310-8455-cad1006bcd31
parent
161d1954
Changes
2
Hide whitespace changes
Inline
Side-by-side
source/flatom.cpp
View file @
cc1dfc58
...
...
@@ -125,3 +125,16 @@ flext::AtomList flext::AtomList::GetPart(int offs,int len) const
}
flext
::
AtomAnything
::
AtomAnything
(
const
t_symbol
*
h
,
int
argc
,
const
t_atom
*
argv
)
:
AtomList
(
argc
,
argv
),
hdr
(
h
?
h
:
MakeSymbol
(
""
))
{}
flext
::
AtomAnything
::
AtomAnything
(
const
char
*
h
,
int
argc
,
const
t_atom
*
argv
)
:
AtomList
(
argc
,
argv
),
hdr
(
MakeSymbol
(
h
))
{}
flext
::
AtomAnything
::
AtomAnything
(
const
AtomAnything
&
a
)
:
AtomList
(
a
),
hdr
(
a
.
hdr
)
{}
source/flsupport.h
View file @
cc1dfc58
...
...
@@ -331,11 +331,11 @@ public:
{
public:
//! Construct anything
AtomAnything
(
const
t_symbol
*
h
=
NULL
,
int
argc
=
0
,
const
t_atom
*
argv
=
NULL
)
:
AtomList
(
argc
,
argv
),
hdr
(
h
)
{}
AtomAnything
(
const
t_symbol
*
h
=
NULL
,
int
argc
=
0
,
const
t_atom
*
argv
=
NULL
)
;
//! Construct anything
AtomAnything
(
const
char
*
h
,
int
argc
=
0
,
const
t_atom
*
argv
=
NULL
)
:
AtomList
(
argc
,
argv
),
hdr
(
MakeSymbol
(
h
))
{}
AtomAnything
(
const
char
*
h
,
int
argc
=
0
,
const
t_atom
*
argv
=
NULL
)
;
//! Construct anything
AtomAnything
(
const
AtomAnything
&
a
)
:
AtomList
(
a
),
hdr
(
a
.
hdr
)
{}
AtomAnything
(
const
AtomAnything
&
a
)
;
//! Clear anything
AtomAnything
&
Clear
()
{
return
operator
()();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment