forked from University/epr24pr5-ojanssen2
16 lines
236 B
C++
16 lines
236 B
C++
#pragma once
|
|
#include "std_lib_inc.h"
|
|
#ifndef READINSTATUS_H
|
|
#define READINSTATUS_H
|
|
|
|
namespace util {
|
|
enum class DataType {
|
|
INIT,
|
|
USER,
|
|
TASK,
|
|
USERTASKINDEX
|
|
};
|
|
} // util
|
|
|
|
#endif // READINSTATUS_H
|
|
|