Random stuff, testing things, and so on.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
244 B

#ifndef ACLASS_HPP
#define ACLASS_HPP
#include <memory>
#include <stdint.h>
class AClass {
private:
uint32_t a_value;
public:
AClass(uint32_t p_value);
void process() const;
};
std::unique_ptr<AClass> new_aclass(uint32_t v);
#endif