Program Listing for File base_config.hpp

Return to documentation for file (rcppsw/config/base_config.hpp)

#pragma once

/*******************************************************************************
 * Includes
 ******************************************************************************/
#include <string>

#include "rcppsw/rcppsw.hpp"

/*******************************************************************************
 * Namespaces/Decls
 ******************************************************************************/
namespace rcppsw::config {


/*******************************************************************************
 * Structure Definitions
 ******************************************************************************/
struct base_config {
  base_config(void) = default;
  virtual ~base_config(void) = default;
  base_config(const base_config&) = default;
  base_config& operator=(const base_config&) = default;
};

namespace constants {
static inline const std::string kNoValue = "none";

} /* namespace constants */
} /* namespace rcppsw::config */