Cat
lbcat-cmake
CatKernel
src
Object.cpp
Go to the documentation of this file.
1
// $Id: $
2
// Include files
3
4
// local
5
#include "
Object.h
"
6
7
//-----------------------------------------------------------------------------
8
// Implementation file for class : Object
9
//
10
// 2006-10-26 :
11
//-----------------------------------------------------------------------------
12
13
//=============================================================================
14
// Standard constructor, initializes variables
15
//=============================================================================
16
Object::Object
( ) {
17
setName
(
"UNKNOWN"
);
18
setType
(
"UNKNOWN"
);
19
setTitle
(
"CAT Application"
);
20
setId
(0);
21
setDllName
( std::string(
"CatKernel"
) );
22
}
23
24
//=============================================================================
25
// Destructor
26
//=============================================================================
27
Object::~Object
() {
28
}
29
/*
30
//=============================================================================
31
//
32
//=============================================================================
33
vars Object::get( const std::string param ,
34
const bool printout ) {
35
vars v;
36
return v;
37
}
38
39
//=============================================================================
40
//
41
//=============================================================================
42
StatusCode Object::cmd( const std::string command , vars varlist ) {
43
info("No cmd sent to the abstract class.","");
44
return StatusCode::SUCCESS;
45
}
46
47
//=============================================================================
48
//
49
//=============================================================================
50
StatusCode Object::parser( const commands instruction ) {
51
return StatusCode::SUCCESS;
52
}
53
54
//=============================================================================
55
*/
Object::setDllName
void setDllName(std::string dllName)
Definition:
Object.h:66
Object::setName
void setName(std::string name)
Definition:
Object.h:51
Object::setType
void setType(std::string type)
Definition:
Object.h:52
Object::setId
void setId(unsigned char id)
Definition:
Object.h:53
Object::setTitle
void setTitle(std::string title)
Definition:
Object.h:54
Object::Object
Object()
Standard constructor.
Definition:
Object.cpp:16
Object::~Object
virtual ~Object()
Destructor.
Definition:
Object.cpp:27
Object.h
Generated by
1.8.13