FieldStack.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <sstream>
4 
6 {
7  class FieldStack
8  {
9  private:
10 
16 
17  protected:
18 
24  const FieldStack* GetPrevious() const
25  {
26  return _previous;
27  }
28 
34  FieldStack(const FieldStack* previous)
35  : _previous(previous) { }
36 
37  public:
38 
44  virtual std::string GetLocation() const = 0;
45  };
46 }
47 
FieldStack(const FieldStack *previous)
Construct a child field stack.
Definition: FieldStack.h:34
virtual std::string GetLocation() const =0
Construct the current location.
const FieldStack * _previous
Previous entry in the field stack.
Definition: FieldStack.h:15
const FieldStack * GetPrevious() const
Get the previus element in the stack.
Definition: FieldStack.h:24


swarmros
Author(s):
autogenerated on Fri Apr 3 2020 03:42:48