Skip to content

Commit edcb0cd

Browse files
committed
Release ScreenEC.
1 parent a493636 commit edcb0cd

Some content is hidden

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

45 files changed

+1856
-2246
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.1322
1+
1.36.1323
Lines changed: 49 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,60 @@
11
/*
22
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*/
16-
17-
#ifndef ALIBABACLOUD_IMAGEPROCESS_MODEL_ANALYZECHESTVESSELREQUEST_H_
18-
#define ALIBABACLOUD_IMAGEPROCESS_MODEL_ANALYZECHESTVESSELREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RpcServiceRequest.h>
23-
#include <alibabacloud/imageprocess/ImageprocessExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace Imageprocess
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_IMAGEPROCESS_EXPORT AnalyzeChestVesselRequest : public RpcServiceRequest
32-
{
33-
public:
34-
struct URLList
35-
{
36-
std::string uRL;
37-
};
38-
39-
public:
40-
AnalyzeChestVesselRequest();
41-
~AnalyzeChestVesselRequest();
42-
43-
std::string getDataSourceType()const;
44-
void setDataSourceType(const std::string& dataSourceType);
45-
std::string getOrgName()const;
46-
void setOrgName(const std::string& orgName);
47-
std::string getDataFormat()const;
48-
void setDataFormat(const std::string& dataFormat);
49-
std::vector<URLList> getURLList()const;
50-
void setURLList(const std::vector<URLList>& uRLList);
51-
std::string getOrgId()const;
52-
void setOrgId(const std::string& orgId);
53-
bool getAsync()const;
54-
void setAsync(bool async);
55-
56-
private:
57-
std::string dataSourceType_;
58-
std::string orgName_;
59-
std::string dataFormat_;
60-
std::vector<URLList> uRLList_;
61-
std::string orgId_;
62-
bool async_;
63-
64-
};
65-
}
66-
}
67-
}
68-
#endif // !ALIBABACLOUD_IMAGEPROCESS_MODEL_ANALYZECHESTVESSELREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_IMAGEPROCESS_MODEL_ANALYZECHESTVESSELREQUEST_H_
18+
#define ALIBABACLOUD_IMAGEPROCESS_MODEL_ANALYZECHESTVESSELREQUEST_H_
19+
20+
#include <alibabacloud/imageprocess/ImageprocessExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Imageprocess {
28+
namespace Model {
29+
class ALIBABACLOUD_IMAGEPROCESS_EXPORT AnalyzeChestVesselRequest : public RpcServiceRequest {
30+
public:
31+
struct URLList {
32+
std::string uRL;
33+
};
34+
AnalyzeChestVesselRequest();
35+
~AnalyzeChestVesselRequest();
36+
std::string getDataSourceType() const;
37+
void setDataSourceType(const std::string &dataSourceType);
38+
std::string getOrgName() const;
39+
void setOrgName(const std::string &orgName);
40+
std::string getDataFormat() const;
41+
void setDataFormat(const std::string &dataFormat);
42+
std::vector<URLList> getURLList() const;
43+
void setURLList(const std::vector<URLList> &uRLList);
44+
std::string getOrgId() const;
45+
void setOrgId(const std::string &orgId);
46+
bool getAsync() const;
47+
void setAsync(bool async);
48+
49+
private:
50+
std::string dataSourceType_;
51+
std::string orgName_;
52+
std::string dataFormat_;
53+
std::vector<URLList> uRLList_;
54+
std::string orgId_;
55+
bool async_;
56+
};
57+
} // namespace Model
58+
} // namespace Imageprocess
59+
} // namespace AlibabaCloud
60+
#endif // !ALIBABACLOUD_IMAGEPROCESS_MODEL_ANALYZECHESTVESSELREQUEST_H_
Lines changed: 49 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,60 @@
11
/*
22
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*/
16-
17-
#ifndef ALIBABACLOUD_IMAGEPROCESS_MODEL_CALCCACSREQUEST_H_
18-
#define ALIBABACLOUD_IMAGEPROCESS_MODEL_CALCCACSREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RpcServiceRequest.h>
23-
#include <alibabacloud/imageprocess/ImageprocessExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace Imageprocess
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_IMAGEPROCESS_EXPORT CalcCACSRequest : public RpcServiceRequest
32-
{
33-
public:
34-
struct URLList
35-
{
36-
std::string uRL;
37-
};
38-
39-
public:
40-
CalcCACSRequest();
41-
~CalcCACSRequest();
42-
43-
std::string getDataSourceType()const;
44-
void setDataSourceType(const std::string& dataSourceType);
45-
std::string getOrgName()const;
46-
void setOrgName(const std::string& orgName);
47-
std::string getDataFormat()const;
48-
void setDataFormat(const std::string& dataFormat);
49-
std::vector<URLList> getURLList()const;
50-
void setURLList(const std::vector<URLList>& uRLList);
51-
std::string getOrgId()const;
52-
void setOrgId(const std::string& orgId);
53-
bool getAsync()const;
54-
void setAsync(bool async);
55-
56-
private:
57-
std::string dataSourceType_;
58-
std::string orgName_;
59-
std::string dataFormat_;
60-
std::vector<URLList> uRLList_;
61-
std::string orgId_;
62-
bool async_;
63-
64-
};
65-
}
66-
}
67-
}
68-
#endif // !ALIBABACLOUD_IMAGEPROCESS_MODEL_CALCCACSREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_IMAGEPROCESS_MODEL_CALCCACSREQUEST_H_
18+
#define ALIBABACLOUD_IMAGEPROCESS_MODEL_CALCCACSREQUEST_H_
19+
20+
#include <alibabacloud/imageprocess/ImageprocessExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Imageprocess {
28+
namespace Model {
29+
class ALIBABACLOUD_IMAGEPROCESS_EXPORT CalcCACSRequest : public RpcServiceRequest {
30+
public:
31+
struct URLList {
32+
std::string uRL;
33+
};
34+
CalcCACSRequest();
35+
~CalcCACSRequest();
36+
std::string getDataSourceType() const;
37+
void setDataSourceType(const std::string &dataSourceType);
38+
std::string getOrgName() const;
39+
void setOrgName(const std::string &orgName);
40+
std::string getDataFormat() const;
41+
void setDataFormat(const std::string &dataFormat);
42+
std::vector<URLList> getURLList() const;
43+
void setURLList(const std::vector<URLList> &uRLList);
44+
std::string getOrgId() const;
45+
void setOrgId(const std::string &orgId);
46+
bool getAsync() const;
47+
void setAsync(bool async);
48+
49+
private:
50+
std::string dataSourceType_;
51+
std::string orgName_;
52+
std::string dataFormat_;
53+
std::vector<URLList> uRLList_;
54+
std::string orgId_;
55+
bool async_;
56+
};
57+
} // namespace Model
58+
} // namespace Imageprocess
59+
} // namespace AlibabaCloud
60+
#endif // !ALIBABACLOUD_IMAGEPROCESS_MODEL_CALCCACSREQUEST_H_
Lines changed: 43 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,54 @@
11
/*
22
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*/
16-
17-
#ifndef ALIBABACLOUD_IMAGEPROCESS_MODEL_CLASSIFYFNFREQUEST_H_
18-
#define ALIBABACLOUD_IMAGEPROCESS_MODEL_CLASSIFYFNFREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RpcServiceRequest.h>
23-
#include <alibabacloud/imageprocess/ImageprocessExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace Imageprocess
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_IMAGEPROCESS_EXPORT ClassifyFNFRequest : public RpcServiceRequest
32-
{
33-
34-
public:
35-
ClassifyFNFRequest();
36-
~ClassifyFNFRequest();
37-
38-
std::string getOrgName()const;
39-
void setOrgName(const std::string& orgName);
40-
std::string getTracerId()const;
41-
void setTracerId(const std::string& tracerId);
42-
std::string getDataFormat()const;
43-
void setDataFormat(const std::string& dataFormat);
44-
std::string getOrgId()const;
45-
void setOrgId(const std::string& orgId);
46-
std::string getImageUrl()const;
47-
void setImageUrl(const std::string& imageUrl);
48-
49-
private:
50-
std::string orgName_;
51-
std::string tracerId_;
52-
std::string dataFormat_;
53-
std::string orgId_;
54-
std::string imageUrl_;
55-
56-
};
57-
}
58-
}
59-
}
60-
#endif // !ALIBABACLOUD_IMAGEPROCESS_MODEL_CLASSIFYFNFREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_IMAGEPROCESS_MODEL_CLASSIFYFNFREQUEST_H_
18+
#define ALIBABACLOUD_IMAGEPROCESS_MODEL_CLASSIFYFNFREQUEST_H_
19+
20+
#include <alibabacloud/imageprocess/ImageprocessExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Imageprocess {
28+
namespace Model {
29+
class ALIBABACLOUD_IMAGEPROCESS_EXPORT ClassifyFNFRequest : public RpcServiceRequest {
30+
public:
31+
ClassifyFNFRequest();
32+
~ClassifyFNFRequest();
33+
std::string getOrgName() const;
34+
void setOrgName(const std::string &orgName);
35+
std::string getTracerId() const;
36+
void setTracerId(const std::string &tracerId);
37+
std::string getDataFormat() const;
38+
void setDataFormat(const std::string &dataFormat);
39+
std::string getOrgId() const;
40+
void setOrgId(const std::string &orgId);
41+
std::string getImageUrl() const;
42+
void setImageUrl(const std::string &imageUrl);
43+
44+
private:
45+
std::string orgName_;
46+
std::string tracerId_;
47+
std::string dataFormat_;
48+
std::string orgId_;
49+
std::string imageUrl_;
50+
};
51+
} // namespace Model
52+
} // namespace Imageprocess
53+
} // namespace AlibabaCloud
54+
#endif // !ALIBABACLOUD_IMAGEPROCESS_MODEL_CLASSIFYFNFREQUEST_H_

0 commit comments

Comments
 (0)