Helix Web Services Client  1
Helix Web Services Client SDK for Qt Applications
hws.h
1 // Copyright 2015 Perforce Software Inc.
2 #ifndef __HELIX_WEB_SERVICES_H___
3 #define __HELIX_WEB_SERVICES_H___
4 
5 #include "hws/Client.h"
6 ;
62 
63 namespace hws {
64 
65  // Semantic versioning information for the project.
66 
67  // Changes to the major version should indicate a breaking change to the API
68  #define HELIX_WEB_SERVICES_MAJOR_VERSION 1
69 
70  // Changes to the minor version indicate most likely a feature addition,
71  // but shouldn't break any existing code.
72  #define HELIX_WEB_SERVICES_MINOR_VERSION 0
73 
74  // Patch versions shouldn't have any API change at all, just bug fixes.
75  #define HELIX_WEB_SERVICES_PATCH_VERSION 0
76 
77  // If non-null, this is not an official release, and this string indicates
78  // more information, like "main-[CHANGELIST]" that can be
79  #define HELIX_WEB_SERVICES_PRERELEASE_VERSION "main-DEV"
80 }
81 
82 #endif // __HELIX_WEB_SERVICES_H__
Definition: hws.h:63