3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-30 00:44:34 +02:00
dft_tools/c++/app4triqs/toto.hpp
2019-04-23 16:44:00 -04:00

76 lines
1.6 KiB
C++

#pragma once
#include <triqs/gfs.hpp>
namespace app4triqs {
/**
* A very useful and important class
*
* @note A Useful note
*/
class toto {
int i = 0;
public:
toto() = default;
/**
* Construct from integer
*
* @param i_ a scalar :math:`G(\tau)`
*/
explicit toto(int i_) : i(i_) {}
~toto() = default;
// Copy/Move construction
toto(toto const &) = default;
toto(toto &&) = default;
/// Copy/Move assignment
toto &operator=(toto const &) = default;
toto &operator=(toto &&) = default;
/// Simple accessor
int get_i() const { return i; }
/**
* A simple function with :math:`G(\tau)`
*
* @param u Nothing useful
*/
int f(int u) { return u;}
/// Arithmetic operations
toto operator+(toto const &b) const;
toto &operator+=(toto const &b);
/// Comparison
bool operator==(toto const &b) const;
/// HDF5
static std::string hdf5_scheme() { return "Toto"; }
friend void h5_write(triqs::h5::group grp, std::string subgroup_name, toto const &m);
friend void h5_read(triqs::h5::group grp, std::string subgroup_name, toto &m);
/// Serialization
template <class Archive> void serialize(Archive &ar, const unsigned int version) { ar &i; }
};
/**
* Chain digits of two integers
*
* Chain the decimal digits of two integers i and j, and return the result
*
* @param i The first integer
* @param j The second integer
* @return An integer containing the digits of both i and j
*
* @remark
*/
int chain(int i, int j);
} // namespace app4triqs