FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
moose-core/basecode/ValueFinfo.cpp at master · BhallaLab/moose-core · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
BhallaLab
/
moose-core
Public
Notifications
You must be signed in to change notification settings
Fork
38
Star
19
Code
Issues
47
Pull requests
2
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
moose-core
/
basecode
/
ValueFinfo.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
32 lines (26 loc) · 845 Bytes
Breadcrumbs
moose-core
/
basecode
/
ValueFinfo.cpp
Copy path
File metadata and controls
32 lines (26 loc) · 845 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
*********************************************************************
** This program is part of 'MOOSE', the
** Messaging Object Oriented Simulation Environment.
** Copyright (C) 2003-2010 Upinder S. Bhalla. and NCBS
** It is made available under the terms of the
** GNU Lesser General Public License version 2.1
** See the file COPYING.LIB for the full notice.
*********************************************************************
*/
#
include
"
header.h
"
ValueFinfoBase::ValueFinfoBase
(
const
string& name,
const
string& doc )
: Finfo( name, doc ),
set_(
0
),
get_(
0
)
{;}
DestFinfo*
ValueFinfoBase::getFinfo
()
const
{
return
get_;
}
vector< string >
ValueFinfoBase::innerDest
()
const
{
vector< string > ret;
if
( set_ )
ret.
push_back
( set_->
name
() );
assert
( get_ );
ret.
push_back
( get_->
name
() );
return
ret;
}
Back
|
FazBrowse Home
|
New Git URL