Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90524781
variable_interface.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 2, 11:33
Size
2 KB
Mime Type
text/x-c++
Expires
Mon, Nov 4, 11:33 (1 d, 22 h)
Engine
blob
Format
Raw Data
Handle
22088612
Attached To
rAKA akantu
variable_interface.hh
View Options
/**
* @file variable_interface.hh
*
* @author David Simon Kammer <david.kammer@epfl.ch>
*
* @date creation: Tue Jun 04 2013
* @date last modification: Tue Jun 04 2013
*
* @brief variable interface
*
* @section LICENSE
*
* Copyright (©) 2014 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* IOHelper is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* IOHelper is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with IOHelper. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __IOHELPER_VARIABLE_INTERFACE_HH__
#define __IOHELPER_VARIABLE_INTERFACE_HH__
/* -------------------------------------------------------------------------- */
#include "visitor.hh"
/* -------------------------------------------------------------------------- */
__BEGIN_IOHELPER__
class
VariableInterface
{
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public
:
VariableInterface
()
{};
virtual
~
VariableInterface
()
{};
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public
:
virtual
void
accept
(
Visitor
&
v
)
const
=
0
;
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
public
:
//! return the size per element (valid only if isHomogeneous is true)
virtual
UInt
getDim
()
const
=
0
;
//! return the description name of the container
virtual
std
::
string
getName
()
const
=
0
;
virtual
DataType
getDataType
()
const
=
0
;
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
private
:
};
/* -------------------------------------------------------------------------- */
__END_IOHELPER__
#endif
/* __IOHELPER_VARIABLE_INTERFACE_HH__ */
Event Timeline
Log In to Comment