//
// Created by robin on 5/10/16.
//

#ifndef ROZITM_COMMON_H
#define ROZITM_COMMON_H

#include <string>

class Common
{
public:
    template <class T>
    static void testStream(const T& data, const std::string& ref);
};

#include "Common.hxx"

#endif //ROZITM_COMMON_H