Simpatico  v1.10
Blank.h
1 #ifndef UTIL_BLANK_H
2 #define UTIL_BLANK_H
3 
4 /*
5 * Util Package - C++ Utilities for Scientific Computation
6 *
7 * Copyright 2010 - 2017, The Regents of the University of Minnesota
8 * Distributed under the terms of the GNU General Public License.
9 */
10 
11 #include <util/param/ParamComponent.h>
12 
13 namespace Util
14 {
15 
24  class Blank : public ParamComponent
25  {
26 
27  public:
28 
30  Blank();
31 
33  virtual ~Blank();
34 
40  virtual void readParam(std::istream &in);
41 
47  virtual void writeParam(std::ostream &out);
48 
49  };
50 
51 }
52 #endif
An empty line within a parameter file.
Definition: Blank.h:24
virtual void readParam(std::istream &in)
Read a blank line.
Definition: Blank.cpp:27
virtual void writeParam(std::ostream &out)
Write a blank line.
Definition: Blank.cpp:43
Blank()
Constructor.
Definition: Blank.cpp:14
Utility classes for scientific computation.
Definition: accumulators.mod:1
Abstract base class for classes that input and ouput parameters to file.
virtual ~Blank()
Virtual Destructor.
Definition: Blank.cpp:19