ADMB Documentation  -a65f1c97
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
model36.cpp
Go to the documentation of this file.
1 /*
2  * $Id$
3  *
4  * Author: David Fournier
5  * Copyright (c) 2008-2012 Regents of the University of California
6  */
7 #include <admodel.h>
8 
9 void named_adstring::allocate(const char * s1,const char * _s)
10 {
12  (*this)=s1;
13 }
14 
15 void named_adstring::operator = (const char * _s)
16 {
18 }
19 
21 {
23 }
24 
25 void dll_named_adstring::operator = (const char * _s)
26 {
28 }
29 
31 {
33 }
34 
35 void dll_named_adstring::allocate(char ** ps1,const char * _s)
36 {
37  named_adstring::allocate(*ps1,_s);
38 }
39 
41 {
42  strcpy(*d,(char*)(*this));
43 }
void allocate(const char *s)
Definition: model.cpp:112
void operator=(const adstring &)
Definition: model36.cpp:20
void allocate(const char *s1, const char *s="UNNAMED")
Definition: model36.cpp:9
Description not yet available.
void allocate(char **ps1, const char *s="UNNAMED")
Definition: model36.cpp:35
void operator=(const adstring &)
Definition: model36.cpp:30
adstring & operator=(const adstring &t)
Definition: string1.cpp:48