cc-condor-sync/condor_job.hpp
Joachim Meyer a3ca962d84 Add Schedd plugin to synch with CC.
This should be much more reliable, albeit being more prone to crash a HTCondor component (the schedd) if there's a bug...
2022-12-15 16:13:45 +01:00

17 lines
412 B
C++

#pragma once
#include <unordered_map>
#include <functional>
#include <algorithm>
using namespace std;
// std::string cannot be empty, null, or whatever. Luckily, there are no empty strings
#define NULL_STR ""
typedef unordered_map<string, string> CondorJob;
typedef pair<int,int> JobId;
typedef unordered_map<int,CondorJob> CondorJobCluster;
typedef unordered_map<int,CondorJobCluster> CondorJobCollection;