~ubuntu-branches/ubuntu/utopic/travis/utopic

« back to all changes in this revision

Viewing changes to src/xstring.h

  • Committer: Package Import Robot
  • Author(s): Daniel Leidert
  • Date: 2014-01-18 20:07:16 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20140118200716-whsmcg7fa1eyqecq
Tags: 140117-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*****************************************************************************
2
 
    TRAVIS - Trajectory Analyzer and Visualizer
3
 
    http://www.travis-analyzer.de/
4
 
 
5
 
    Copyright (c) 2009-2013 Martin Brehm
6
 
                  2012-2013 Martin Thomas
7
 
 
8
 
    This file written by Martin Brehm.
9
 
 
10
 
    This program is free software: you can redistribute it and/or modify
11
 
    it under the terms of the GNU General Public License as published by
12
 
    the Free Software Foundation, either version 3 of the License, or
13
 
    (at your option) any later version.
14
 
 
15
 
    This program is distributed in the hope that it will be useful,
16
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 
    GNU General Public License for more details.
19
 
 
20
 
    You should have received a copy of the GNU General Public License
21
 
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
 
*****************************************************************************/
23
 
 
24
 
#ifndef XSTRING_H
25
 
#define XSTRING_H
26
 
 
27
 
#include "tools.h"
28
 
#include "xobject.h"
29
 
#include "backtrace.h"
30
 
 
31
 
class CxString : public CxObject
32
 
{
33
 
public:
34
 
        
35
 
        CxString();
36
 
        ~CxString();
37
 
        CxString(const char *s);
38
 
        CxString(const CxString &s);
39
 
        CxString(const CxString &s1, const CxString &s2);
40
 
        operator const char*() const;
41
 
        CxString operator + (const CxString &s) const;
42
 
        bool operator == (const CxString &s) const;
43
 
        bool operator != (const CxString &s) const;
44
 
        bool operator > (const CxString &s) const;
45
 
        bool operator < (const CxString &s) const;
46
 
        bool operator >= (const CxString &s) const;
47
 
        bool operator <= (const CxString &s) const;
48
 
        void operator += (const CxString &s);
49
 
        char& operator [] (int i);
50
 
        int GetLength() const;
51
 
        int FindFirst(char c) const;
52
 
        int FindNext(int i, char c) const;
53
 
        int FindLast(char c) const;
54
 
        CxString Mid(int pos, int count) const;
55
 
        CxString Mid(int pos) const;
56
 
        CxString Left(int count) const;
57
 
        void Format(const char *s, ...);
58
 
        void Dump();
59
 
        
60
 
private:
61
 
        char *m_pData;
62
 
};
63
 
 
64
 
CxString operator + (const char *s1, const CxString& s2);
65
 
 
66
 
#endif
 
1
/*****************************************************************************
 
2
    TRAVIS - Trajectory Analyzer and Visualizer
 
3
    http://www.travis-analyzer.de/
 
4
 
 
5
    Copyright (c) 2009-2014 Martin Brehm
 
6
                  2012-2014 Martin Thomas
 
7
 
 
8
    This file written by Martin Brehm.
 
9
 
 
10
    This program is free software: you can redistribute it and/or modify
 
11
    it under the terms of the GNU General Public License as published by
 
12
    the Free Software Foundation, either version 3 of the License, or
 
13
    (at your option) any later version.
 
14
 
 
15
    This program is distributed in the hope that it will be useful,
 
16
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
    GNU General Public License for more details.
 
19
 
 
20
    You should have received a copy of the GNU General Public License
 
21
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
22
*****************************************************************************/
 
23
 
 
24
#ifndef XSTRING_H
 
25
#define XSTRING_H
 
26
 
 
27
#include "tools.h"
 
28
#include "xobject.h"
 
29
#include "backtrace.h"
 
30
 
 
31
class CxString : public CxObject
 
32
{
 
33
public:
 
34
        
 
35
        CxString();
 
36
        ~CxString();
 
37
        CxString(const char *s);
 
38
        CxString(const CxString &s);
 
39
        CxString(const CxString &s1, const CxString &s2);
 
40
        operator const char*() const;
 
41
        CxString operator + (const CxString &s) const;
 
42
        bool operator == (const CxString &s) const;
 
43
        bool operator != (const CxString &s) const;
 
44
        bool operator > (const CxString &s) const;
 
45
        bool operator < (const CxString &s) const;
 
46
        bool operator >= (const CxString &s) const;
 
47
        bool operator <= (const CxString &s) const;
 
48
        void operator += (const CxString &s);
 
49
        char& operator [] (int i);
 
50
        int GetLength() const;
 
51
        int FindFirst(char c) const;
 
52
        int FindNext(int i, char c) const;
 
53
        int FindLast(char c) const;
 
54
        CxString Mid(int pos, int count) const;
 
55
        CxString Mid(int pos) const;
 
56
        CxString Left(int count) const;
 
57
        void Format(const char *s, ...);
 
58
        void Dump();
 
59
        
 
60
private:
 
61
        char *m_pData;
 
62
};
 
63
 
 
64
CxString operator + (const char *s1, const CxString& s2);
 
65
 
 
66
#endif