Skip to content

File type.h

File List > type.h

Go to the documentation of this file

#pragma once
#ifdef DLL_EXPORT
#define DLL_API __declspec(dllexport)
#else
#define DLL_API __declspec(dllimport)
#endif

#include <string>

using namespace std;

namespace inspection
{

    extern "C" DLL_API typedef enum
    {
        SEMENTIC_SEGMENTATION,
        SR
    }TaskType;

    extern "C" DLL_API typedef enum
    {
        POUCH,
        HCELL,
        ECELL,

        CYLINDER_CIRCLE_2170,
        CYLINDER_CIRCLE_4680,
        CYLINDER_CIRCLE_4695,

        CYLINDER_TOP_2170,
        CYLINDER_TOP_4680,
        CYLINDER_TOP_4695,

        CYLINDER_BOTTOM_2170,
        CYLINDER_BOTTOM_4680,
        CYLINDER_BOTTOM_4695,

        NONE
    }CellType;

}