summaryrefslogtreecommitdiff
path: root/cpp.hint
blob: 63269345ce7c5f6efffa59ceb587a933bee35761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Hint files help the Visual Studio IDE interpret Visual C++ identifiers
// such as names of functions and macros.
// For more information see https://go.microsoft.com/fwlink/?linkid=865984

#define SAL_THROW_EXTERN_C()

#define SAL_UNUSED_PARAMETER

#define DECL_LINK(Member, ArgType, RetType) \
    RetType Member(ArgType)

#define DECL_STATIC_LINK(Class, Member, ArgType, RetType) \
    static RetType Member(Class *, ArgType)

#define DECL_DLLPRIVATE_LINK(Member, ArgType, RetType) \
    SAL_DLLPRIVATE RetType Member(ArgType)

#define DECL_DLLPRIVATE_STATIC_LINK(Class, Member, ArgType, RetType) \
    SAL_DLLPRIVATE static RetType Member(Class *, ArgType)

#define IMPL_LINK(Class, Member, ArgType, ArgName, RetType) \
    RetType Class::Member(ArgType ArgName)

#define IMPL_LINK_NOARG(Class, Member, ArgType, RetType) \
    RetType Class::Member(ArgType)

#define IMPL_STATIC_LINK(Class, Member, ArgType, ArgName, RetType) \
    RetType Class::Member(Class *, ArgType ArgName)

#define IMPL_STATIC_LINK_NOARG(Class, Member, ArgType, RetType) \
    RetType Class::Member(Class *, ArgType)

// From workdir/UnpackedTarball/cppunit/include/cppunit/plugin/TestPlugIn.h

#define CPPUNIT_PLUGIN_IMPLEMENT()

// From workdir/UnpackedTarball/cppunit/include/cppunit/extensions/HelperMacros.h
// To allow searching for the test names, where they are defined using the macros

#define CPPUNIT_TEST_FIXTURE(TestClass, TestName)                              \
    class TestName : public TestClass                                          \
    {                                                                          \
    public:                                                                    \
        void TestBody();                                                       \
    };                                                                         \
    void TestName::TestBody()
22411f4ac32127c93228e06dad4ff22'>Writer: Restore old symbol button and add new numbering stylesYousuf Philips 2017-09-23tdf#106781 Enable a few hidden items in writer styles toolbarYousuf Philips 2017-09-15tdf#107915 More paragraph and character style aliasesYousuf Philips 2017-06-13tdf#95489 use internal name for quotation character styleYousuf Philips 2017-06-02tdf#107915 Add paragraph and character style aliasesYousuf Philips 2017-05-14Remove more %20 from style commandsMaxim Monastirsky 2017-04-20tdf#106781 Style-focused formatting toolbar for writerYousuf Philips