mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-22 03:40:04 +02:00
25 lines
275 B
C++
25 lines
275 B
C++
#pragma once
|
|
|
|
#include "Multi.h"
|
|
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
class Single {
|
|
public:
|
|
Single(int id);
|
|
~Single();
|
|
int getID();
|
|
|
|
int printNumber(int i);
|
|
string printString(string s);
|
|
char* printCharArray(char a[]);
|
|
|
|
private:
|
|
int detID;
|
|
|
|
int* someValue;
|
|
|
|
};
|
|
|