VR-Forces 4.7 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
vrfutil
algorithmManager.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2014 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
9
10
#pragma once
11
12
#include <
vrfutil/vrfutilDefines.h
>
13
#include <
vrfutil/taggedException.h
>
14
#include <string>
15
16
#include <boost/noncopyable.hpp>
17
18
#define Dt_THROW_ALGORITHM_EXCEPTION(errorMsg) \
19
throw DtAlgorithmManager::Exception( \
20
errorMsg, __DtFUNC__, DtFilename::stripPath(__FILE__), __LINE__, 0)
21
24
class
DT_DLL_vrfutil
DtAlgorithmManager
: boost::noncopyable
25
{
26
public
:
27
typedef
DtTaggedException<DtAlgorithmManager>
Exception
;
28
29
enum
Severity
30
{
31
Error
,
32
WARN
,
33
INFO
,
34
VERBOSE
,
35
DEBUG
36
};
37
39
virtual
void
message(Severity,
const
std::string&)
const
;
40
41
void
errorMessage(
const
std::string&)
const
;
42
void
warnMessage(
const
std::string&)
const
;
43
void
infoMessage(
const
std::string&)
const
;
44
void
verboseMessage(
const
std::string&)
const
;
45
void
debugMessage(
const
std::string&)
const
;
46
48
virtual
bool
cancel()
const
;
49
};
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)