1 #ifndef FTAMED_H
2 #define FTAMED_H
3 
4 #include <objtools/flatfile/flatfile_parse_info.hpp>
5 #include <corelib/ncbi_message.hpp>
6 
7 BEGIN_NCBI_SCOPE
8 
9 CRef<objects::CCit_art> FetchPubPmId(Int4 pmid);
10 
11 using TFindPubOptions = Parser::SFindPubOptions;
12 
13 class CPubFixMessageListener : public CMessageListener_Basic
14 {
15 public:
16     EPostResult PostMessage(const IMessage& message) override;
17 };
18 
19 bool MedArchInit(void);
20 void MedArchFini(void);
21 
22 END_NCBI_SCOPE
23 
24 #endif // FTAMED_H
25