aboutsummaryrefslogtreecommitdiff
path: root/src/storage.cc
blob: 4e4abff5b263f53ad9340460bcc59fa847ce7690 (plain)
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
#include <sstream>

#include "storage.hh"



namespace Formaline
{
  
  storage::
  storage (enum state const st)
    : m_state (st)
  {
  }
  
  
  
  storage::
  ~ storage ()
  {
  }
  
  
  
  enum storage::state storage::
  get_state ()
    const
  {
    return m_state;
  }
  
  
  
} // namespace Formaline