2、修复若干逻辑bug,具体参考BUG_FIX_REPORT.md Signed-off-by: waiwaylee <waiwaylee@foxmail.com>
18 lines
385 B
C++
18 lines
385 B
C++
#ifndef TRACK_DIE_H
|
|
#define TRACK_DIE_H
|
|
#include "data_process_class_dll.h"
|
|
#include "parameters.h"
|
|
#include "struct.h"
|
|
#include <vector>
|
|
using namespace std;
|
|
|
|
class Track_Die
|
|
{
|
|
public:
|
|
void track_die_process( std::vector <Trust_Track> *trust_track,
|
|
int Track_die_Index_Output[],
|
|
int *Track_die_num_Output);
|
|
|
|
};
|
|
#endif // TRACK_DIE_H
|