GJK_nD
 All Classes Files Functions Typedefs Friends Pages
Dummy.hpp
1 #ifndef DLL_DUMMY_HPP
2 #define DLL_DUMMY_HPP
3 
4 #include <iostream>
5 
7 namespace DLL {
8 
16 class Dummy
17 {
18 private:
19  typedef std::pair<size_t, size_t> Coordinates;
20 
21 public:
25  void addInPoint (const Coordinates &) { }
26 
31  void addDownPoint(const Coordinates &) { }
32 
37  void addUpPoint (const Coordinates &) { }
38 
46  bool stillGrowableAfterUpdate() { return true;}
47 
52  friend std::ostream & operator<<(std::ostream & out, const Dummy &)
53  {
54  return out;
55  }
56 
57 };
58 
59 } // namespace DLL
61 
62 #endif // DLL_DUMMY_HPP