Skip to content

Commit 4c4e989

Browse files
Andrii BoichukAndrii Boichuk
authored andcommitted
Rename WebDriver.h to QtWebkitWebDriver.h
1 parent ed41229 commit 4c4e989

File tree

2 files changed

+37
-23
lines changed

2 files changed

+37
-23
lines changed

inc/QtWebkitWebDriver.h

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#ifndef WEBDRIVER_H
2+
#define WEBDRIVER_H
3+
/**
4+
* @mainpage This is autogenerated documentation for QtWebKitWebDriver. <br>
5+
* Public API for WD is in file inc/QtWebkitWebDriver.h
6+
*/
7+
/** @file
8+
* public API of QtWebkitWD
9+
*/
10+
11+
#include <viewfactory.h>
12+
13+
#ifdef __cplusplus
14+
extern "C"
15+
{
16+
#endif
17+
/** @fn int main_server(int argc, char *argv[])
18+
* @brief starts WD server with parameters
19+
* @return EXIT_SUCCESS in case of successfull start of WD, errorcode otherwise
20+
**/
21+
int main_server(int argc, char *argv[]);
22+
23+
#ifdef __cplusplus
24+
}
25+
#endif
26+
27+
/** @fn void regitsterView(std::string name)
28+
* @brief register View for testing
29+
* @param[in] name factory name for this class type
30+
**/
31+
template <class T>
32+
void regitsterView(std::string name)
33+
{
34+
ViewFactory::GetInstance()->add<T>(name);
35+
}
36+
37+
#endif // WEBDRIVER_H

inc/WebDriver.h

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)