Files
solver/MbDCode/ASMTRefItem.h
2023-08-08 18:51:19 -06:00

29 lines
908 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include "ASMTSpatialItem.h"
#include "ASMTMarker.h"
namespace MbD {
class ASMTRefItem : public ASMTSpatialItem
{
//
public:
void readMarkers(std::vector<std::string>& lines);
void readMarker(std::vector<std::string>& lines);
std::shared_ptr<std::vector<std::shared_ptr<ASMTMarker>>> markers;
};
}