summary refs log tree commit diff stats
path: root/generator/field.h
blob: aaca3fac6b3032bc5dca7e739bebc94463040747 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#ifndef BINDING_H_CAE0B18E
#define BINDING_H_CAE0B18E

#include <string>

namespace verbly {
  namespace generator {

    class field {
      public:
        enum class type {
          invalid,
          integer,
          string
        };

        // Copy and move constructors

        field(const field& other);
        field(field&& other);

        // Assignment

        field& operator=(field other);

        // Swap

        friend void swap(field& first, field& second);

        // Destructor

        ~field();

        // Generic accessors

        type getType() const
        {
          return type_;
        }

        std::string getName() const
        {
          return name_;
        }

        // Integer

        field(std::string name, int arg);

        int getInteger() const;

        // String

        field(std::string name, std::string arg);

        std::string getString() const;

      private:

        field()
        {
        }

        union {
          int integer_;
          std::string string_;
        };

        type type_ = type::invalid;
        std::string name_;
    };

  };
};

#endif /* end of include guard: BINDING_H_CAE0B18E */