mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-12 21:07:13 +02:00
something
This commit is contained in:
24
slsDetectorSoftware/threadFiles/Single.h
Normal file
24
slsDetectorSoftware/threadFiles/Single.h
Normal file
@ -0,0 +1,24 @@
|
||||
#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;
|
||||
|
||||
};
|
||||
|
Reference in New Issue
Block a user