Line data Source code
1 : /* 2 : * Copyright (c) 2017 Juniper Networks, Inc. All rights reserved. 3 : */ 4 : 5 : #ifndef QE_SANDESH_H_ 6 : #define QE_SANDESH_H_ 7 : 8 : #include <sandesh/sandesh_types.h> 9 : #include <sandesh/sandesh.h> 10 : 11 : struct QESandeshContext : public SandeshContext { 12 44 : QESandeshContext(QueryEngine *qe) : 13 : SandeshContext(), 14 44 : qe_(qe) {} 15 47 : QueryEngine *QE() { return qe_;} 16 : QueryEngine *qe_; 17 : }; 18 : 19 : #endif /* QE_SANDESH_H_ */