Skip to content

Commit f02f3d2

Browse files
committed
modify file header
1 parent 7efa3a3 commit f02f3d2

File tree

246 files changed

+2935
-1300
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

246 files changed

+2935
-1300
lines changed

Frame/Examples/Tutorial1/HelloWorld1.cpp

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*****************************************************************************
2+
// * This source file is part of ArkGameFrame *
3+
// * For the latest info, see https://github.com/ArkGame *
4+
// * *
5+
// * Copyright(c) 2013 - 2017 ArkGame authors. *
6+
// * *
7+
// * Licensed under the Apache License, Version 2.0 (the "License"); *
8+
// * you may not use this file except in compliance with the License. *
9+
// * You may obtain a copy of the License at *
10+
// * *
11+
// * http://www.apache.org/licenses/LICENSE-2.0 *
12+
// * *
13+
// * Unless required by applicable law or agreed to in writing, software *
14+
// * distributed under the License is distributed on an "AS IS" BASIS, *
15+
// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.*
16+
// * See the License for the specific language governing permissions and *
17+
// * limitations under the License. *
18+
// * *
19+
// * *
20+
// * @file HelloWorld1.cpp *
21+
// * @author Ark Game Tech *
22+
// * @date 2015-12-15 *
23+
// * @brief HelloWorld1 *
24+
*****************************************************************************/
125
#include "HelloWorld1.h"
226

327
bool HelloWorld1::Init()
@@ -45,3 +69,4 @@ bool HelloWorld1::Shut()
4569

4670
return true;
4771
}
72+

Frame/Examples/Tutorial1/HelloWorld1.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@
1717
// * limitations under the License. *
1818
// * *
1919
// * *
20-
// * @FileName HelloWorld1.h *
21-
// * @Author Ark Game Tech *
22-
// * @Date 2015-12-15 *
23-
// * @Module HelloWorld1 *
24-
// * @email [email protected] *
20+
// * @file HelloWorld1.h *
21+
// * @author Ark Game Tech *
22+
// * @date 2015-12-15 *
2523
// * @brief HelloWorld1 *
2624
*****************************************************************************/
2725
#ifndef AFC_HELLO_WORLD1_H
@@ -53,3 +51,4 @@ class HelloWorld1
5351

5452
#endif
5553

54+

Frame/Examples/Tutorial1/Tutorial1.cpp

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*****************************************************************************
2+
// * This source file is part of ArkGameFrame *
3+
// * For the latest info, see https://github.com/ArkGame *
4+
// * *
5+
// * Copyright(c) 2013 - 2017 ArkGame authors. *
6+
// * *
7+
// * Licensed under the Apache License, Version 2.0 (the "License"); *
8+
// * you may not use this file except in compliance with the License. *
9+
// * You may obtain a copy of the License at *
10+
// * *
11+
// * http://www.apache.org/licenses/LICENSE-2.0 *
12+
// * *
13+
// * Unless required by applicable law or agreed to in writing, software *
14+
// * distributed under the License is distributed on an "AS IS" BASIS, *
15+
// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.*
16+
// * See the License for the specific language governing permissions and *
17+
// * limitations under the License. *
18+
// * *
19+
// * *
20+
// * @file Tutorial1.cpp *
21+
// * @author Ark Game Tech *
22+
// * @date 2015-12-15 *
23+
// * @brief Tutorial1 *
24+
*****************************************************************************/
125
#include "Tutorial1.h"
226
#include "HelloWorld1.h"
327

@@ -36,4 +60,4 @@ void Tutorial1::Install()
3660
void Tutorial1::Uninstall()
3761
{
3862
UNREGISTER_MODULE(pPluginManager, HelloWorld1, HelloWorld1)
39-
}
63+
}

Frame/Examples/Tutorial1/Tutorial1.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@
1717
// * limitations under the License. *
1818
// * *
1919
// * *
20-
// * @FileName Tutorial1.h *
21-
// * @Author Ark Game Tech *
22-
// * @Date 2015-12-15 *
23-
// * @Module Tutorial1 *
24-
// * @email [email protected] *
20+
// * @file Tutorial1.h *
21+
// * @author Ark Game Tech *
22+
// * @date 2015-12-15 *
2523
// * @brief Tutorial1 *
2624
*****************************************************************************/
2725
#ifndef NF_TUTORIAL1_H
@@ -46,3 +44,4 @@ class Tutorial1 : public AFIPlugin
4644
virtual void Uninstall();
4745
};
4846
#endif
47+

Frame/Examples/Tutorial1/dllmain.cpp

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*****************************************************************************
2+
// * This source file is part of ArkGameFrame *
3+
// * For the latest info, see https://github.com/ArkGame *
4+
// * *
5+
// * Copyright(c) 2013 - 2017 ArkGame authors. *
6+
// * *
7+
// * Licensed under the Apache License, Version 2.0 (the "License"); *
8+
// * you may not use this file except in compliance with the License. *
9+
// * You may obtain a copy of the License at *
10+
// * *
11+
// * http://www.apache.org/licenses/LICENSE-2.0 *
12+
// * *
13+
// * Unless required by applicable law or agreed to in writing, software *
14+
// * distributed under the License is distributed on an "AS IS" BASIS, *
15+
// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.*
16+
// * See the License for the specific language governing permissions and *
17+
// * limitations under the License. *
18+
// * *
19+
// * *
20+
// * @file dllmain.cpp *
21+
// * @author Ark Game Tech *
22+
// * @date 2015-12-15 *
23+
// * @brief dllmain *
24+
*****************************************************************************/
125
#include "SDK/Base/AFPlatform.hpp"
226

327
#if ARK_RUN_MODE == ARK_RUN_MODE_DEBUG
@@ -20,3 +44,4 @@
2044
#endif
2145

2246
#endif
47+

Frame/Examples/Tutorial2/HelloWorld2.cpp

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*****************************************************************************
2+
// * This source file is part of ArkGameFrame *
3+
// * For the latest info, see https://github.com/ArkGame *
4+
// * *
5+
// * Copyright(c) 2013 - 2017 ArkGame authors. *
6+
// * *
7+
// * Licensed under the Apache License, Version 2.0 (the "License"); *
8+
// * you may not use this file except in compliance with the License. *
9+
// * You may obtain a copy of the License at *
10+
// * *
11+
// * http://www.apache.org/licenses/LICENSE-2.0 *
12+
// * *
13+
// * Unless required by applicable law or agreed to in writing, software *
14+
// * distributed under the License is distributed on an "AS IS" BASIS, *
15+
// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.*
16+
// * See the License for the specific language governing permissions and *
17+
// * limitations under the License. *
18+
// * *
19+
// * *
20+
// * @file HelloWorld2.cpp *
21+
// * @author Ark Game Tech *
22+
// * @date 2015-12-15 *
23+
// * @brief HelloWorld2 *
24+
*****************************************************************************/
125
#include "HelloWorld2.h"
226
#include "SDK/Core/AFCObject.h"
327
#include "SDK/Core/AFIComponent.h"
@@ -87,3 +111,4 @@ bool HelloWorld2::Shut()
87111

88112
return true;
89113
}
114+

Frame/Examples/Tutorial2/HelloWorld2.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@
1717
// * limitations under the License. *
1818
// * *
1919
// * *
20-
// * @FileName HelloWorld2.h *
21-
// * @Author Ark Game Tech *
22-
// * @Date 2015-12-15 *
23-
// * @Module HelloWorld2 *
24-
// * @email [email protected] *
20+
// * @file HelloWorld2.h *
21+
// * @author Ark Game Tech *
22+
// * @date 2015-12-15 *
2523
// * @brief HelloWorld2 *
2624
*****************************************************************************/
2725
#ifndef AFC_HELLO_WORLD2_H
@@ -56,3 +54,4 @@ class HelloWorld2
5654

5755
#endif
5856

57+

Frame/Examples/Tutorial2/Tutorial2.cpp

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*****************************************************************************
2+
// * This source file is part of ArkGameFrame *
3+
// * For the latest info, see https://github.com/ArkGame *
4+
// * *
5+
// * Copyright(c) 2013 - 2017 ArkGame authors. *
6+
// * *
7+
// * Licensed under the Apache License, Version 2.0 (the "License"); *
8+
// * you may not use this file except in compliance with the License. *
9+
// * You may obtain a copy of the License at *
10+
// * *
11+
// * http://www.apache.org/licenses/LICENSE-2.0 *
12+
// * *
13+
// * Unless required by applicable law or agreed to in writing, software *
14+
// * distributed under the License is distributed on an "AS IS" BASIS, *
15+
// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.*
16+
// * See the License for the specific language governing permissions and *
17+
// * limitations under the License. *
18+
// * *
19+
// * *
20+
// * @file Tutorial2.cpp *
21+
// * @author Ark Game Tech *
22+
// * @date 2015-12-15 *
23+
// * @brief Tutorial2 *
24+
*****************************************************************************/
125
#include "Tutorial2.h"
226
#include "HelloWorld2.h"
327

@@ -37,4 +61,4 @@ void Tutorial2::Install()
3761
void Tutorial2::Uninstall()
3862
{
3963
UNREGISTER_MODULE(pPluginManager, HelloWorld2, HelloWorld2)
40-
}
64+
}

Frame/Examples/Tutorial2/Tutorial2.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@
1717
// * limitations under the License. *
1818
// * *
1919
// * *
20-
// * @FileName Tutorial2.h *
21-
// * @Author Ark Game Tech *
22-
// * @Date 2015-12-15 *
23-
// * @Module Tutorial2 *
24-
// * @email [email protected] *
20+
// * @file Tutorial2.h *
21+
// * @author Ark Game Tech *
22+
// * @date 2015-12-15 *
2523
// * @brief Tutorial2 *
2624
*****************************************************************************/
2725
#ifndef NF_TUTORIAL2_H
@@ -47,3 +45,4 @@ class Tutorial2 : public AFIPlugin
4745
virtual void Uninstall();
4846
};
4947
#endif
48+

Frame/Examples/Tutorial2/dllmain.cpp

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*****************************************************************************
2+
// * This source file is part of ArkGameFrame *
3+
// * For the latest info, see https://github.com/ArkGame *
4+
// * *
5+
// * Copyright(c) 2013 - 2017 ArkGame authors. *
6+
// * *
7+
// * Licensed under the Apache License, Version 2.0 (the "License"); *
8+
// * you may not use this file except in compliance with the License. *
9+
// * You may obtain a copy of the License at *
10+
// * *
11+
// * http://www.apache.org/licenses/LICENSE-2.0 *
12+
// * *
13+
// * Unless required by applicable law or agreed to in writing, software *
14+
// * distributed under the License is distributed on an "AS IS" BASIS, *
15+
// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.*
16+
// * See the License for the specific language governing permissions and *
17+
// * limitations under the License. *
18+
// * *
19+
// * *
20+
// * @file dllmain.cpp *
21+
// * @author Ark Game Tech *
22+
// * @date 2015-12-15 *
23+
// * @brief dllmain *
24+
*****************************************************************************/
125
#include "SDK/Base/AFPlatform.hpp"
226

327
#if ARK_RUN_MODE == ARK_RUN_MODE_DEBUG
@@ -20,3 +44,4 @@
2044
#endif
2145

2246
#endif
47+

0 commit comments

Comments
 (0)