VR-Forces 4.1 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
include
makArchives
DtAutoDriversRecord.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2008 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
/******************************************************************************
6
** $RCSfile: DtAutoDriversRecord.h,v $ $Revision: 1.4 $ $State: Exp $
7
******************************************************************************/
8
12
13
#include <
makArchives/makArchives.h
>
14
#include <vector>
15
#include <string>
16
17
#pragma once
18
19
namespace
makArchives
20
{
24
class
DT_DLL_MAKARCHIVES
DtAutoDriversRecord
25
{
26
public
:
27
DtAutoDriversRecord
();
28
~
DtAutoDriversRecord
();
29
DtAutoDriversRecord
(
const
DtAutoDriversRecord
& copy);
30
DtAutoDriversRecord
& operator=(
const
DtAutoDriversRecord
& copy);
31
32
const
std::vector<std::string>& autoStartDrivers()
const
;
33
void
setAutoStartDrivers(
const
std::vector<std::string>& );
34
35
protected
:
36
37
friend
class
boost::serialization::access;
38
42
template
<
class
Archive>
43
void
serialize(Archive & ar,
const
unsigned
int
version)
44
{
45
ar & BOOST_SERIALIZATION_NVP(myAutoStartDrivers);
46
}
47
48
49
protected
:
50
std::vector<std::string>
myAutoStartDrivers
;
51
52
};
53
}
54
Document ID: Generated on Tue Jan 29 18:21:16 EST 2013 from SVN revision 123193
Copyright © 2005-2013 VT MÄK Inc. All Rights Reserved (
www.mak.com
)