summaryrefslogtreecommitdiffstats
path: root/afm-client/bower_components/foundation-icon-fonts/svgs/fi-background-color.svg
blob: 7e927749db1b60cd8a1a02f2ec29dfa41f6f63ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 width="100px" height="100px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
<g>
	<polygon fill-rule="evenodd" clip-rule="evenodd" points="37.808,77.057 34.411,86 67.175,86 63.778,77.057 	"/>
	<polygon fill-rule="evenodd" clip-rule="evenodd" points="40.608,68.316 60.977,68.316 50.793,41.327 	"/>
	<path fill-rule="evenodd" clip-rule="evenodd" d="M79,14H21c-3.85,0-7,3.15-7,7v58c0,3.85,3.15,7,7,7h2.111l20.812-52.766h0
		c0.329-1.061,1.307-1.836,2.476-1.836h8.812c1.152,0,2.118,0.753,2.462,1.79h0.018L78.478,86H79c3.85,0,7-3.15,7-7V21
		C86,17.15,82.85,14,79,14z"/>
</g>
</svg>
p://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ struct afb_req; /* Plugin Type */ enum AFB_pluginE { AFB_PLUGIN_JSON = 123456789, /* AFB_PLUGIN_JSCRIPT = 987654321, */ AFB_PLUGIN_RAW = 987123546 }; /* Enum for Session/Token/Authentication middleware */ enum AFB_sessionE { AFB_SESSION_NONE, AFB_SESSION_CREATE, AFB_SESSION_CLOSE, AFB_SESSION_RENEW, AFB_SESSION_CHECK }; /* API definition */ struct AFB_restapi { const char *name; enum AFB_sessionE session; void (*callback)(struct afb_req req); const char *info; }; /* Plugin definition */ struct AFB_plugin { enum AFB_pluginE type; const char *info; const char *prefix; const struct AFB_restapi *apis; void (*freeCtxCB)(void*); // callback to free application context [null for standard free] }; /* config mode */ enum AFB_Mode { AFB_MODE_LOCAL = 0, AFB_MODE_REMOTE, AFB_MODE_GLOBAL }; struct afb_poll; struct AFB_interface { int verbosity; enum AFB_Mode mode; struct afb_poll (*poll_open)(int fd, void *closure); }; extern const struct AFB_plugin *pluginRegister (const struct AFB_interface *interface);