Skip to content

Commit 215cb98

Browse files
committed
rebased
1 parent 72a5547 commit 215cb98

32 files changed

Lines changed: 571 additions & 3144 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#ifndef _keyValuePair_H_
2+
#define _keyValuePair_H_
3+
4+
#include<string.h>
5+
6+
typedef struct keyValuePair_t {
7+
char* key;
8+
void* value;
9+
} keyValuePair_t;
10+
11+
keyValuePair_t *keyValuePair_create(char *key, void *value);
12+
13+
keyValuePair_t* keyValuePair_create_allocate(char* key, double value);
14+
15+
void keyValuePair_free(keyValuePair_t *keyValuePair);
16+
17+
#endif /* _keyValuePair_H_ */
Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +0,0 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
3-
<apiVersion>42.0</apiVersion>
4-
<status>Active</status>
5-
</ApexClass>
Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +0,0 @@
1-
# File
2-
3-
## Properties
4-
Name | Type | Description | Notes
5-
------------ | ------------- | ------------- | -------------
6-
**sourceURI** | **string** | | [optional] [default to null]
7-
8-
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
9-
10-
Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +0,0 @@
1-
# category_t
2-
3-
## Properties
4-
Name | Type | Description | Notes
5-
------------ | ------------- | ------------- | -------------
6-
**id** | **long** | | [optional]
7-
**name** | **char \*** | | [optional]
8-
9-
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10-
11-
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
using Microsoft.AspNetCore.Hosting;
2+
using Microsoft.Extensions.Hosting;
3+
4+
namespace Org.OpenAPITools
5+
{
6+
/// <summary>
7+
/// Program
8+
/// </summary>
9+
public class Program
10+
{
11+
/// <summary>
12+
/// Main
13+
/// </summary>
14+
/// <param name="args"></param>
15+
public static void Main(string[] args)
16+
{
17+
CreateHostBuilder(args).Build().Run();
18+
}
19+
20+
/// <summary>
21+
/// Create the host builder.
22+
/// </summary>
23+
/// <param name="args"></param>
24+
/// <returns>IHostBuilder</returns>
25+
public static IHostBuilder CreateHostBuilder(string[] args) =>
26+
Host.CreateDefaultBuilder(args)
27+
.ConfigureWebHostDefaults(webBuilder =>
28+
{
29+
webBuilder.UseStartup<Startup>()
30+
.UseUrls("http://0.0.0.0:8080/");
31+
});
32+
}
33+
}
Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +0,0 @@
1-
{
2-
"$schema": "http://json.schemastore.org/launchsettings.json",
3-
"iisSettings": {
4-
"windowsAuthentication": false,
5-
"anonymousAuthentication": true,
6-
"iisExpress": {
7-
"applicationUrl": "http://localhost:61788",
8-
"sslPort": 44301
9-
}
10-
},
11-
"profiles": {
12-
"IIS Express": {
13-
"commandName": "IISExpress",
14-
"launchBrowser": true,
15-
"launchUrl": "openapi",
16-
"environmentVariables": {
17-
"ASPNETCORE_ENVIRONMENT": "Development"
18-
}
19-
},
20-
"OpenAPI": {
21-
"commandName": "Project",
22-
"launchBrowser": true,
23-
"launchUrl": "openapi",
24-
"applicationUrl": "https://localhost:5001;http://localhost:5000",
25-
"environmentVariables": {
26-
"ASPNETCORE_ENVIRONMENT": "Development"
27-
}
28-
},
29-
"Docker": {
30-
"commandName": "Docker",
31-
"launchBrowser": true,
32-
"launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/openapi",
33-
"publishAllPorts": true,
34-
"useSSL": true
35-
}
36-
}
37-
}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
using Microsoft.AspNetCore.Hosting;
2+
using Microsoft.Extensions.Hosting;
3+
4+
namespace Org.OpenAPITools
5+
{
6+
/// <summary>
7+
/// Program
8+
/// </summary>
9+
public class Program
10+
{
11+
/// <summary>
12+
/// Main
13+
/// </summary>
14+
/// <param name="args"></param>
15+
public static void Main(string[] args)
16+
{
17+
CreateHostBuilder(args).Build().Run();
18+
}
19+
20+
/// <summary>
21+
/// Create the host builder.
22+
/// </summary>
23+
/// <param name="args"></param>
24+
/// <returns>IHostBuilder</returns>
25+
public static IHostBuilder CreateHostBuilder(string[] args) =>
26+
Host.CreateDefaultBuilder(args)
27+
.ConfigureWebHostDefaults(webBuilder =>
28+
{
29+
webBuilder.UseStartup<Startup>()
30+
.UseUrls("http://0.0.0.0:8080/");
31+
});
32+
}
33+
}
Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +0,0 @@
1-
{
2-
"$schema": "http://json.schemastore.org/launchsettings.json",
3-
"iisSettings": {
4-
"windowsAuthentication": false,
5-
"anonymousAuthentication": true,
6-
"iisExpress": {
7-
"applicationUrl": "http://localhost:61788",
8-
"sslPort": 44301
9-
}
10-
},
11-
"profiles": {
12-
"IIS Express": {
13-
"commandName": "IISExpress",
14-
"launchBrowser": true,
15-
"launchUrl": "openapi",
16-
"environmentVariables": {
17-
"ASPNETCORE_ENVIRONMENT": "Development"
18-
}
19-
},
20-
"OpenAPI": {
21-
"commandName": "Project",
22-
"launchBrowser": true,
23-
"launchUrl": "openapi",
24-
"applicationUrl": "https://localhost:5001;http://localhost:5000",
25-
"environmentVariables": {
26-
"ASPNETCORE_ENVIRONMENT": "Development"
27-
}
28-
},
29-
"Docker": {
30-
"commandName": "Docker",
31-
"launchBrowser": true,
32-
"launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/openapi",
33-
"publishAllPorts": true,
34-
"useSSL": true
35-
}
36-
}
37-
}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
using Microsoft.AspNetCore.Hosting;
2+
using Microsoft.Extensions.Hosting;
3+
4+
namespace Org.OpenAPITools
5+
{
6+
/// <summary>
7+
/// Program
8+
/// </summary>
9+
public class Program
10+
{
11+
/// <summary>
12+
/// Main
13+
/// </summary>
14+
/// <param name="args"></param>
15+
public static void Main(string[] args)
16+
{
17+
CreateHostBuilder(args).Build().Run();
18+
}
19+
20+
/// <summary>
21+
/// Create the host builder.
22+
/// </summary>
23+
/// <param name="args"></param>
24+
/// <returns>IHostBuilder</returns>
25+
public static IHostBuilder CreateHostBuilder(string[] args) =>
26+
Host.CreateDefaultBuilder(args)
27+
.ConfigureWebHostDefaults(webBuilder =>
28+
{
29+
webBuilder.UseStartup<Startup>()
30+
.UseUrls("http://0.0.0.0:8080/");
31+
});
32+
}
33+
}
Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +0,0 @@
1-
{
2-
"$schema": "http://json.schemastore.org/launchsettings.json",
3-
"iisSettings": {
4-
"windowsAuthentication": false,
5-
"anonymousAuthentication": true,
6-
"iisExpress": {
7-
"applicationUrl": "http://localhost:61788",
8-
"sslPort": 44301
9-
}
10-
},
11-
"profiles": {
12-
"IIS Express": {
13-
"commandName": "IISExpress",
14-
"launchBrowser": true,
15-
"launchUrl": "openapi",
16-
"environmentVariables": {
17-
"ASPNETCORE_ENVIRONMENT": "Development"
18-
}
19-
},
20-
"OpenAPI": {
21-
"commandName": "Project",
22-
"launchBrowser": true,
23-
"launchUrl": "openapi",
24-
"applicationUrl": "https://localhost:5001;http://localhost:5000",
25-
"environmentVariables": {
26-
"ASPNETCORE_ENVIRONMENT": "Development"
27-
}
28-
},
29-
"Docker": {
30-
"commandName": "Docker",
31-
"launchBrowser": true,
32-
"launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/openapi",
33-
"publishAllPorts": true,
34-
"useSSL": true
35-
}
36-
}
37-
}

0 commit comments

Comments
 (0)