aboutsummaryrefslogtreecommitdiff
path: root/src/stable/tafcomment.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable/tafcomment.h')
-rw-r--r--src/stable/tafcomment.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/stable/tafcomment.h b/src/stable/tafcomment.h
new file mode 100644
index 0000000..4efd548
--- /dev/null
+++ b/src/stable/tafcomment.h
@@ -0,0 +1,36 @@
1/*
2 * Copyright (C) 2007-2011 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
8#ifndef BU_TAF_COMMENT_H
9#define BU_TAF_COMMENT_H
10
11#include <stdint.h>
12#include "bu/tafnode.h"
13
14namespace Bu
15{
16 /**
17 *
18 *@ingroup Taf
19 */
20 class TafComment : public TafNode
21 {
22 public:
23 TafComment( const Bu::TafComment &rSrc );
24 TafComment( const Bu::String &sText, bool bEOL=false );
25 virtual ~TafComment();
26
27 const Bu::String &getText() const;
28 bool isEOLStyle() const;
29
30 private:
31 Bu::String sText;
32 bool bEOL;
33 };
34}
35
36#endif